encoding/xml.printer.w (field)

10 uses

	encoding/xml (current package)
		marshal.go#L152: 	e := &Encoder{printer{w: bufio.NewWriter(w)}}
		marshal.go#L176: 	return enc.p.w.Flush()
		marshal.go#L191: 	return enc.p.w.Flush()
		marshal.go#L237: 		if t.Target == "xml" && p.w.Buffered() != 0 {
		marshal.go#L310: 	return enc.p.w.Flush()
		marshal.go#L321: 	w          *bufio.Writer
		marshal.go#L995: 		n, p.err = p.w.Write(b)
		marshal.go#L1006: 		n, p.err = p.w.WriteString(s)
		marshal.go#L1017: 		p.err = p.w.WriteByte(c)
		marshal.go#L1030: 	if err := p.w.Flush(); err != nil {